* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}


    body {
        background-color: var(--light-color);
        font-family: var(--body-font);
        font-size: 16px;
        font-weight: 400;
        line-height: 164%;
        letter-spacing: 0.32px;
        color: var(--dark-color);
        margin: 0;
        background-color: #ececec;
      }


/* Main Container */
.containerl {
    width: 90%;
    max-width: 1200px;
    margin: 50px auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 1s ease-out forwards;
}

/* Left: Image Section */
.image-sectionl {
    flex: 1;
    display: flex;
    justify-content: center;
    padding: 20px;
}

.image-sectionl img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
}

.image-sectionl img:hover {
    transform: scale(1.05);
}

/* Right: Info Section */
.info-section {
    flex: 1;
    padding: 20px;
    max-width: 600px;
    animation: fadeInRight 1s ease-out forwards;
}

.info-section h2 {
    color: #222;
    margin-bottom: 15px;
    font-size: 24px;
}

.location, .business-hours, .contact {
    margin-bottom: 15px;
    font-size: 16px;
    color: #444;
    opacity: 0;
    animation: fadeInLeft 1s ease-in-out forwards;
}

.location a {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

.contact a {
    display: block;
    color: #007bff;
    font-size: 18px;
    text-decoration: none;
    margin-top: 5px;
}

/* Animations */
@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ✅ Mobile Responsive */
@media (max-width: 768px) {
    .containerl {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }

    .image-sectionl img {
        max-width: 300px;
    }

    .info-section {
        padding: 15px;
    }

    .info-section h2 {
        font-size: 22px;
    }

    .location, .business-hours, .contact p {
        font-size: 14px;
    }

    .contact a {
        font-size: 16px;
    }
}


/* Call to Action */
.cta {
    width: 90%;
    max-width: 1200px;
    margin: 30px auto;
    padding: 20px;
    background: linear-gradient(135deg, #00a2ff, #0003b3);
    color: white;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1s ease-in-out forwards;
}

.cta h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.cta p {
    font-size: 16px;
}

/* ✅ Mobile Optimization */
@media (max-width: 768px) {
    .cta {
        padding: 15px;
        margin: 20px auto;
    }

    .cta h3 {
        font-size: 20px;
    }

    .cta p {
        font-size: 14px;
    }
}
